home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 23 / CU Amiga - Super CD-ROM 23 (June 1998).iso / CreatingGames / Utilities / Misc / GMS / GMSDev / Includes / pragmas / keyboard_pragmas.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-10-18  |  522 b   |  17 lines

  1. #ifndef _INCLUDE_PRAGMA_KEYBOARD_LIB_H
  2. #define _INCLUDE_PRAGMA_KEYBOARD_LIB_H
  3.  
  4. #ifndef CLIB_KEYBOARD_PROTOS_H
  5. #include <clib/keyboard_protos.h>
  6. #endif
  7.  
  8. #if defined(AZTEC_C) || defined(__MAXON__) || defined(__STORM__)
  9. #pragma amicall(KEYBase,0x006,keyAddInputHandler())
  10. #pragma amicall(KEYBase,0x00C,keyRemInputHandler())
  11. #endif
  12. #if defined(_DCC) || defined(__SASC)
  13. #pragma libcall KEYBase keyAddInputHandler   006 00
  14. #pragma libcall KEYBase keyRemInputHandler   00C 00
  15. #endif
  16.  
  17. #endif    /*  _INCLUDE_PRAGMA_KEYBOARD_LIB_H  */